+2008-07-03 Matthias Clasen <mclasen@redhat.com>
+
+ Bug 539944 – Add GtkScaleButton API so struct fields can be marked as
+ private
+
+ * gtk/gtk.symbols:
+ * gtk/gtkscalebutton.[hc] (gtk_scale_button_get_popup): Add an
+ accessor for the popup. Patch by Christian Dywan
+
2008-07-03 Matthias Clasen <mclasen@redhat.com>
Bug 535498 – Printing demo broken
gtk_scale_button_set_value
gtk_scale_button_get_adjustment
gtk_scale_button_get_value
+gtk_scale_button_get_popup
<SUBSECTION Standard>
GTK_SCALE_BUTTON
GTK_IS_SCALE_BUTTON
gtk_scale_button_set_adjustment
gtk_scale_button_get_orientation
gtk_scale_button_set_orientation
+gtk_scale_button_get_popup
#endif
#endif
}
}
+/**
+ * gtk_scale_button_get_popup:
+ * @button: a #GtkScaleButton
+ *
+ * Retrieves the popup of the #GtkScaleButton.
+ *
+ * Since: 2.14
+ */
+GtkWidget*
+gtk_scale_button_get_popup (GtkScaleButton *button)
+{
+ g_return_if_fail (GTK_IS_SCALE_BUTTON (button));
+
+ return button->priv->dock;
+}
+
/*
* button callbacks.
*/
GtkOrientation gtk_scale_button_get_orientation (GtkScaleButton *button);
void gtk_scale_button_set_orientation (GtkScaleButton *button,
GtkOrientation orientation);
+GtkWidget * gtk_scale_button_get_popup (GtkScaleButton *button);
G_END_DECLS